home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLMessage.h < prev    next >
Encoding:
Text File  |  1997-05-18  |  236 b   |  19 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __MESSAGE_H
  5. #define __MESSAGE_H
  6.  
  7. #include "CLTypes.h"
  8.  
  9. class TMessage
  10. {
  11. protected:
  12. public:
  13.     TMessage();
  14.     TMessage( UINT32 );
  15.     virtual ~TMessage();
  16.     UINT32 mWhat;
  17. };
  18.  
  19. #endif